home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / smb_scope.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  56 lines

  1.  
  2.  
  3. if(description)
  4. {
  5.  script_id(10917);
  6.  script_version ("$Revision: 1.1 $");
  7.  
  8.  name["english"] = "SMB Scope";
  9.  
  10.  
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] = "
  14. This plugin configures Nessus so that
  15. it knows if it should query local information
  16. on each host or information pertaining to
  17. the domain (ie: requests will be forwarded
  18. to the PDC).
  19.  
  20. If you test a single workstation, you
  21. want information about the domain. If
  22. you test the whole network, including
  23. the PDC, you won't want redundant information.
  24.  
  25. See the plugins preferences panel for details.
  26.  
  27.  
  28. Risk factor : None";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "SMB scope options";
  34.  summary["francais"] = "SMB scope options";
  35.  script_summary(english:summary["english"],
  36.                francais:summary["francais"]);
  37.  
  38.  script_category(ACT_SETTINGS);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison");
  41.  family["english"] = "Settings";
  42.  family["francais"] = "Configuration";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  
  45.  script_add_preference(name:"Request information about the domain",
  46.      type:"checkbox", value:"yes");
  47.  exit(0);
  48. }
  49.  
  50. x =  script_get_preference("Request information about the domain");
  51.  
  52. if((x == "yes"))
  53. {
  54.  set_kb_item(name:"SMB/test_domain", value:TRUE);
  55. }
  56.